home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.text;
-
- /** @deprecated */
- public class TableView$TableCell extends BoxView implements TableView.GridCell {
- // $FF: synthetic field
- private final TableView this$0;
- int row;
- int col;
-
- public TableView$TableCell(TableView var1, Element var2) {
- super(var2, 1);
- this.this$0 = var1;
- }
-
- public int getColumnCount() {
- return 1;
- }
-
- public int getGridColumn() {
- return this.col;
- }
-
- public int getGridRow() {
- return this.row;
- }
-
- public int getRowCount() {
- return 1;
- }
-
- public void setGridLocation(int var1, int var2) {
- this.row = var1;
- this.col = var2;
- }
- }
-